The pricing search allows clients to filter results by their Program Name, Product Code, or both.
To filter by program name, use the MultiCriteriaSearchModel.filter.programName field in the filter object. The field accepts a string array of program names, and the program names must be an exact match with what is stored in the data.
To filter by the product code, use the MultiCriteriaSearchModel.filter.productCode field in the filter object. The field accepts a string array of product codes, which must be an exact match with what is stored in the data.
The following will return results filtered for the program name "30 Year Conv" and the product code "7789".
Note: the product codes are based upon the lender configuration.
"filter": {
"programName": ["30 Year Conv"],
"productCode": [7789]
}